home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 September / macformat-041.iso / mac / MacFormat 41 Browser / SOURCES / oDemos3_47.k < prev    next >
Encoding:
Text File  |  1996-07-15  |  1.3 KB  |  72 lines  |  [TEXT/MPS ]

  1. object oDemos3_47 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oBack_button_47_2,
  7.         oNext_Button_47_3,
  8.         oMenu_Button_47_4
  9.     ];
  10. end;
  11.  
  12.  
  13. object oBack_button_47_2 is cPictureHandler
  14. with
  15.     Duration is -1;
  16.     Supplier is oBack_button_66_;
  17.     Behavior is cVRBehavior
  18.     has
  19.         MouseUp(theTarget, theX, theY)
  20.             do
  21.                 oBinder.Goto(oDemos2_43);
  22.                 oBinder.Refresh();
  23.                 oBinder.SetTransition(oDissolve, 30);
  24.             end;
  25.         
  26.     with
  27.         Enabled is true; Shown is true; 
  28.         X is 524; Y is 321; Width is 90; Height is 39;
  29.     end;
  30. end;
  31.  
  32.  
  33. object oNext_Button_47_3 is cPictureHandler
  34. with
  35.     Duration is -1;
  36.     Supplier is oNext_Button_67_;
  37.     Behavior is cVRBehavior
  38.     has
  39.         MouseUp(theTarget, theX, theY)
  40.             do
  41.                 oBinder.Goto(oDemos4_49);
  42.                 oBinder.Refresh();
  43.                 oBinder.SetTransition(oDissolve, 30);
  44.             end;
  45.         
  46.     with
  47.         Enabled is true; Shown is true; 
  48.         X is 523; Y is 241; Width is 90; Height is 39;
  49.     end;
  50. end;
  51.  
  52.  
  53. object oMenu_Button_47_4 is cPictureHandler
  54. with
  55.     Duration is -1;
  56.     Supplier is oMenu_Button_49_;
  57.     Behavior is cVRBehavior
  58.     has
  59.         MouseUp(theTarget, theX, theY)
  60.             do
  61.                 oBinder.Goto(oMain_Menu_2);
  62.                 oBinder.Refresh();
  63.                 oBinder.SetTransition(oDissolve, 30);
  64.             end;
  65.         
  66.     with
  67.         Enabled is true; Shown is true; 
  68.         X is 524; Y is 401; Width is 90; Height is 39;
  69.     end;
  70. end;
  71.  
  72.